home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
test
/
popen_w_test.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-09-05
|
130b
|
10 lines
#include <stdio.h>
int main(void)
{
FILE *fp = popen("io_test", "w");
fprintf(fp, "pescestocco\n");
pclose(fp);
return(0);
}